home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / rsxwdk2s.zip / RSXWDK / LIBSRC / SYSDJ / CHDIR.C < prev    next >
C/C++ Source or Header  |  1994-10-19  |  115b  |  8 lines

  1. #include <sys/doscalls.h>
  2. #include <stdlib.h>
  3.  
  4. int chdir (const char *name)
  5. {
  6.   return (dos_chdir(name));
  7. }
  8.